home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * init.js
- *
- * USAGE
- * Part of IS JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 1999-2000 Innovative Systems SRL.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Innovative Systems SRL
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Innovative Systems SRL.
- *
- * <copyright@innovative.ro>
- *
- * NOTES
- * JavaScript code.
- *
- *****/
-
- /****h* IS_JavaScript_Library/IS
- *
- * NAME
- * IS JavaScript Library / initialization module.
- *
- * DESCRIPTION
- * Definition of IS_getLibHandle function.
- *
- * NOTES
- * (*) This file needs to be included in any file referencing the ISJS library
- ****/
-
-
- /****m* IS/getLibHandle
- *
- * NAME
- * getLibHandle ()
- *
- * DESCRIPTION
- * Returns a reference to the IS library handle.
- *
- * RETURN VALUE
- * the IS library handle
- *
- ****/
- function IS_getLibHandle()
- {
- return ((typeof(top) != "undefined" && typeof(top._is) != "undefined") ? top._is : // browsers
- ((typeof(top) != "undefined" && typeof(top.opener) != "undefined" && top.opener != null && typeof(top.opener._is) != "undefined") ? top.opener._is : // browsers
- ((typeof(MM) != "undefined" && typeof(MM._is) != "undefined") ? MM._is : // MacroMedia DW
- ((typeof(_is) != "undefined") ? _is : null)))); // ??
- }
- var IS = IS_getLibHandle ();
-